十进制转八进制;
#include<iostream>
#include<cstdio>
#include<stack>
using namespace std;
int main()
{
int a;
stack<int>st;
while(~scanf("%d",&a)){
while(!st.empty())st.pop(); //清空栈
while(a){
st.push(a%8);
a=a/8;
}
while(!st.empty()){
cout<<st.top();
st.pop();
}
cout<<endl;
}
return 0;
}
改相应的n就可以了